home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00200_Script_PopScreens < prev    next >
Text File  |  1999-02-25  |  1KB  |  38 lines

  1.  
  2. on mouseWithin me
  3.   set the cursor of sprite the spriteNum of me to [41,42] 
  4.   
  5.   set the visibility of sprite 46 = TRUE
  6.   set the visibility of sprite 48 = TRUE
  7. end
  8.  
  9. on mouseLeave me   
  10.   set the cursor of sprite the spriteNum of me to -1 
  11. end 
  12.  
  13.  
  14. on mouseUp me
  15.   if the memberNum of sprite the spriteNum of me = 217 then
  16.     
  17.     set the memberNum of sprite the spriteNum of me = 219
  18.  
  19.     set the visibility of sprite 41 = TRUE
  20.     set the visibility of sprite 42 = TRUE
  21.     set the visibility of sprite 43 = TRUE
  22.     set the visibility of sprite 44 = TRUE
  23.     set the visibility of sprite 46 = TRUE
  24.     
  25.   else if the memberNum of sprite the spriteNum of me = 219 then
  26.     
  27.     set the memberNum of sprite the spriteNum of me = 217
  28.     
  29.     set the visibility of sprite 41 = FALSE
  30.     set the visibility of sprite 42 = FALSE
  31.     set the visibility of sprite 43 = FALSE
  32.     set the visibility of sprite 44 = FALSE
  33.     set the visibility of sprite 46 = FALSE
  34.     
  35.   end if  
  36.   puppetSound 2, "click_Edit"
  37. end
  38.